home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fatted Calf
/
The Fatted Calf.iso
/
Applications
/
Games
/
NeXTGo
/
Source
/
seed.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-02-08
|
238b
|
15 lines
#include "comment.header"
#include <sys/time.h>
void seed(int *i)
/* start seed of random number generator for Sun */
{
struct timeval tp;
struct timezone tzp;
gettimeofday(&tp, &tzp);
*i = tp.tv_usec;
} /* end seed */